//04_Loop concept //parc_04 //wap to print table number #include #include void main() { int i; clrscr(); i=10; while (i>=1) { printf("%d \n",i*2); i--; } getch(); } /* -------output------- 20 18 16 14 12 10 8 6 4 2 */